home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / zmatrix.c < prev    next >
C/C++ Source or Header  |  1996-05-28  |  8KB  |  321 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zmatrix.c */
  20. /* Matrix operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "igstate.h"
  25. #include "gsmatrix.h"
  26. #include "gscoord.h"
  27. #include "store.h"
  28.  
  29. /* Forward references */
  30. private int near common_transform(P3(os_ptr,
  31.   int (*)(P4(gs_state *, floatp, floatp, gs_point *)),
  32.   int (*)(P4(floatp, floatp, const gs_matrix *, gs_point *))));
  33.  
  34. /* - initmatrix - */
  35. private int
  36. zinitmatrix(os_ptr op)
  37. {    return gs_initmatrix(igs);
  38. }
  39.  
  40. /* <matrix> defaultmatrix <matrix> */
  41. private int
  42. zdefaultmatrix(register os_ptr op)
  43. {    gs_matrix mat;
  44.     gs_defaultmatrix(igs, &mat);
  45.     return write_matrix(op, &mat);
  46. }
  47.  
  48. /* <matrix> currentmatrix <matrix> */
  49. private int
  50. zcurrentmatrix(register os_ptr op)
  51. {    gs_matrix mat;
  52.     gs_currentmatrix(igs, &mat);
  53.     return write_matrix(op, &mat);
  54. }
  55.  
  56. /* <matrix> setmatrix - */
  57. private int
  58. zsetmatrix(register os_ptr op)
  59. {    gs_matrix mat;
  60.     int code = read_matrix(op, &mat);
  61.     if ( code < 0 )
  62.       return code;
  63.     if ( (code = gs_setmatrix(igs, &mat)) < 0 )
  64.       return code;
  65.     pop(1);
  66.     return 0;
  67. }
  68.  
  69. /* <matrix|null> .setdefaultmatrix - */
  70. private int
  71. zsetdefaultmatrix(register os_ptr op)
  72. {    int code;
  73.     if ( r_has_type(op, t_null) )
  74.       code = gs_setdefaultmatrix(igs, NULL);
  75.     else
  76.       { gs_matrix mat;
  77.         code = read_matrix(op, &mat);
  78.         if ( code < 0 )
  79.           return code;
  80.         code = gs_setdefaultmatrix(igs, &mat);
  81.       }
  82.     if ( code < 0 )
  83.       return code;
  84.     pop(1);
  85.     return 0;
  86. }
  87.  
  88. /* <tx> <ty> translate - */
  89. /* <tx> <ty> <matrix> translate <matrix> */
  90. private int
  91. ztranslate(register os_ptr op)
  92. {    int code;
  93.     float trans[2];
  94.     if ( (code = num_params(op, 2, trans)) >= 0 )
  95.     {    code = gs_translate(igs, trans[0], trans[1]);
  96.         if ( code < 0 )
  97.           return code;
  98.     }
  99.     else                /* matrix operand */
  100.     {    gs_matrix mat;
  101.         /* The num_params failure might be a stack underflow. */
  102.         check_op(2);
  103.         if ( (code = num_params(op - 1, 2, trans)) < 0 ||
  104.              (code = gs_make_translation(trans[0], trans[1], &mat)) < 0 ||
  105.              (code = write_matrix(op, &mat)) < 0
  106.            )
  107.           {    /* Might be a stack underflow. */
  108.             check_op(3);
  109.             return code;
  110.           }
  111.         op[-2] = *op;
  112.     }
  113.     pop(2);
  114.     return code;
  115. }
  116.  
  117. /* <sx> <sy> scale - */
  118. /* <sx> <sy> <matrix> scale <matrix> */
  119. private int
  120. zscale(register os_ptr op)
  121. {    int code;
  122.     float scale[2];
  123.     if ( (code = num_params(op, 2, scale)) >= 0 )
  124.     {    code = gs_scale(igs, scale[0], scale[1]);
  125.         if ( code < 0 )
  126.           return code;
  127.     }
  128.     else                /* matrix operand */
  129.     {    gs_matrix mat;
  130.         /* The num_params failure might be a stack underflow. */
  131.         check_op(2);
  132.         if ( (code = num_params(op - 1, 2, scale)) < 0 ||
  133.              (code = gs_make_scaling(scale[0], scale[1], &mat)) < 0 ||
  134.              (code = write_matrix(op, &mat)) < 0
  135.            )
  136.           {    /* Might be a stack underflow. */
  137.             check_op(3);
  138.             return code;
  139.           }
  140.         op[-2] = *op;
  141.     }
  142.     pop(2);
  143.     return code;
  144. }
  145.  
  146. /* <angle> rotate - */
  147. /* <angle> <matrix> rotate <matrix> */
  148. private int
  149. zrotate(register os_ptr op)
  150. {    int code;
  151.     float ang;
  152.     if ( (code = num_params(op, 1, &ang)) >= 0 )
  153.     {    code = gs_rotate(igs, ang);
  154.         if ( code < 0 )
  155.           return code;
  156.     }
  157.     else                /* matrix operand */
  158.     {    gs_matrix mat;
  159.         /* The num_params failure might be a stack underflow. */
  160.         check_op(1);
  161.         if ( (code = num_params(op - 1, 1, &ang)) < 0 ||
  162.              (code = gs_make_rotation(ang, &mat)) < 0 ||
  163.              (code = write_matrix(op, &mat)) < 0
  164.            )
  165.           {    /* Might be a stack underflow. */
  166.             check_op(2);
  167.             return code;
  168.           }
  169.         op[-1] = *op;
  170.     }
  171.     pop(1);
  172.     return code;
  173. }
  174.  
  175. /* <matrix> concat - */
  176. private int
  177. zconcat(register os_ptr op)
  178. {    gs_matrix mat;
  179.     int code = read_matrix(op, &mat);
  180.     if ( code < 0 ) return code;
  181.     code = gs_concat(igs, &mat);
  182.     if ( code < 0 ) return code;
  183.     pop(1);
  184.     return 0;
  185. }
  186.  
  187. /* <matrix1> <matrix2> <matrix> concatmatrix <matrix> */
  188. private int
  189. zconcatmatrix(register os_ptr op)
  190. {    gs_matrix m1, m2, mp;
  191.     int code;
  192.     if (    (code = read_matrix(op - 2, &m1)) < 0 ||
  193.         (code = read_matrix(op - 1, &m2)) < 0 ||
  194.         (code = gs_matrix_multiply(&m1, &m2, &mp)) < 0 ||
  195.         (code = write_matrix(op, &mp)) < 0
  196.        )
  197.       return code;
  198.     op[-2] = *op;
  199.     pop(2);
  200.     return code;
  201. }
  202.  
  203. /* <x> <y> transform <xt> <yt> */
  204. /* <x> <y> <matrix> transform <xt> <yt> */
  205. private int
  206. ztransform(register os_ptr op)
  207. {    return common_transform(op, gs_transform, gs_point_transform);
  208. }
  209.  
  210. /* <dx> <dy> dtransform <dxt> <dyt> */
  211. /* <dx> <dy> <matrix> dtransform <dxt> <dyt> */
  212. private int
  213. zdtransform(register os_ptr op)
  214. {    return common_transform(op, gs_dtransform, gs_distance_transform);
  215. }
  216.  
  217. /* <xt> <yt> itransform <x> <y> */
  218. /* <xt> <yt> <matrix> itransform <x> <y> */
  219. private int
  220. zitransform(register os_ptr op)
  221. {    return common_transform(op, gs_itransform, gs_point_transform_inverse);
  222. }
  223.  
  224. /* <dxt> <dyt> idtransform <dx> <dy> */
  225. /* <dxt> <dyt> <matrix> idtransform <dx> <dy> */
  226. private int
  227. zidtransform(register os_ptr op)
  228. {    return common_transform(op, gs_idtransform, gs_distance_transform_inverse);
  229. }
  230.  
  231. /* Common logic for [i][d]transform */
  232. private int near
  233. common_transform(register os_ptr op,
  234.   int (*ptproc)(P4(gs_state *, floatp, floatp, gs_point *)),
  235.   int (*matproc)(P4(floatp, floatp, const gs_matrix *, gs_point *)))
  236. {    float opxy[2];
  237.     gs_point pt;
  238.     int code;
  239.     /* Optimize for the non-matrix case */
  240.     switch ( r_type(op) )
  241.        {
  242.     case t_real:
  243.         opxy[1] = op->value.realval;
  244.         break;
  245.     case t_integer:
  246.         opxy[1] = op->value.intval;
  247.         break;
  248.     case t_array:                /* might be a matrix */
  249.     case t_shortarray:
  250.     case t_mixedarray:
  251.        {    gs_matrix mat;
  252.         gs_matrix *pmat = &mat;
  253.         if (    (code = read_matrix(op, pmat)) < 0 ||
  254.             (code = num_params(op - 1, 2, opxy)) < 0 ||
  255.             (code = (*matproc)(opxy[0], opxy[1], pmat, &pt)) < 0
  256.            )
  257.           {    /* Might be a stack underflow. */
  258.             check_op(3);
  259.             return code;
  260.           }
  261.         op--;
  262.         pop(1);
  263.         goto out;
  264.        }
  265.     default:
  266.         return_op_typecheck(op);
  267.        }
  268.     switch ( r_type(op - 1) )
  269.        {
  270.     case t_real:
  271.         opxy[0] = (op - 1)->value.realval;
  272.         break;
  273.     case t_integer:
  274.         opxy[0] = (op - 1)->value.intval;
  275.         break;
  276.     default:
  277.         return_op_typecheck(op - 1);
  278.        }
  279.     if ( (code = (*ptproc)(igs, opxy[0], opxy[1], &pt)) < 0 )
  280.       return code;
  281. out:    make_real(op - 1, pt.x);
  282.     make_real(op, pt.y);
  283.     return 0;
  284. }
  285.  
  286. /* <matrix> <inv_matrix> invertmatrix <inv_matrix> */
  287. private int
  288. zinvertmatrix(register os_ptr op)
  289. {    gs_matrix m;
  290.     int code;
  291.     if (    (code = read_matrix(op - 1, &m)) < 0 ||
  292.         (code = gs_matrix_invert(&m, &m)) < 0 ||
  293.         (code = write_matrix(op, &m)) < 0
  294.        )
  295.       return code;
  296.     op[-1] = *op;
  297.     pop(1);
  298.     return code;
  299. }
  300.  
  301. /* ------ Initialization procedure ------ */
  302.  
  303. BEGIN_OP_DEFS(zmatrix_op_defs) {
  304.     {"1concat", zconcat},
  305.     {"2dtransform", zdtransform},
  306.     {"3concatmatrix", zconcatmatrix},
  307.     {"1currentmatrix", zcurrentmatrix},
  308.     {"1defaultmatrix", zdefaultmatrix},
  309.     {"2idtransform", zidtransform},
  310.     {"0initmatrix", zinitmatrix},
  311.     {"2invertmatrix", zinvertmatrix},
  312.     {"2itransform", zitransform},
  313.     {"1rotate", zrotate},
  314.     {"2scale", zscale},
  315.     {"1setmatrix", zsetmatrix},
  316.     {"1.setdefaultmatrix", zsetdefaultmatrix},
  317.     {"2transform", ztransform},
  318.     {"2translate", ztranslate},
  319. END_OP_DEFS(0) }
  320.  
  321.